home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / tpwfort.zip / CHCASW.PAS < prev    next >
Pascal/Delphi Source File  |  1992-03-09  |  294b  |  18 lines

  1. (* for attempt tp link TPW prog with MS FORT 5.1 "DLL" *)
  2.  
  3. unit chcasw;
  4.  
  5. interface
  6.  
  7. type
  8. fnam = array[0..63] of Char;
  9.  
  10. PROCEDURE CHCASE(VAR NAMEA,NAMEB: FNAM;VAR
  11.           ITYPE,ierr,iochek: INTEGER);
  12.  
  13. IMPLEMENTATION
  14.  
  15. procedure chcase;       external 'CHCASW' {index 1};
  16.  
  17. end.
  18.